Add Since to ::insert-emoji, and some trivialities
authorDaniel Boles <dboles@src.gnome.org>
Wed, 22 Nov 2017 22:35:25 +0000 (22:35 +0000)
committerDaniel Boles <dboles@src.gnome.org>
Wed, 22 Nov 2017 22:36:31 +0000 (22:36 +0000)
Document when these keybinding signals were added.

gtk/gtkentry.c
gtk/gtktextview.c

index e898c9ab2238b209ce834c94abb1e910e70b153a..06f0698e12e56751d94583c06184f4375c7d677e 100644 (file)
@@ -1719,9 +1719,11 @@ gtk_entry_class_init (GtkEntryClass *class)
    *
    * The ::insert-emoji signal is a
    * [keybinding signal][GtkBindingSignal]
-   * which gets emitted to present the Emoji chooser for the entry.
+   * which gets emitted to present the Emoji chooser for the @entry.
    *
    * The default bindings for this signal are Ctrl-. and Ctrl-;
+   *
+   * Since: 3.22
    */
   signals[INSERT_EMOJI] =
     g_signal_new (I_("insert-emoji"),
index 86644637cf605cc5831eab74ecd9bf302cb2d681..67a291f8b39fbd6cc96cefd7212eedb0b1796860 100644 (file)
@@ -1411,9 +1411,11 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
    *
    * The ::insert-emoji signal is a
    * [keybinding signal][GtkBindingSignal]
-   * which gets emitted to present the Emoji chooser for the text_view.
+   * which gets emitted to present the Emoji chooser for the @text_view.
    *
    * The default bindings for this signal are Ctrl-. and Ctrl-;
+   *
+   * Since: 3.22
    */
   signals[INSERT_EMOJI] =
     g_signal_new (I_("insert-emoji"),
@@ -10374,4 +10376,3 @@ gtk_text_view_insert_emoji (GtkTextView *text_view)
 
   gtk_popover_popup (GTK_POPOVER (chooser));
 }
-